home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
util
/
cli
/
MakePath.lha
/
MakePath
/
src
/
debug.h
next >
Wrap
C/C++ Source or Header
|
1997-09-27
|
510b
|
28 lines
/********************************************************************
*
* File: debug.c
* Description: Debugging macros
* Author: Ole Martin Bjørndalen (olemb@stud.cs.uit.no)
* Version: 1.1a
* Status: Public domain
* Last changed: 27 Sep 1997
*
********************************************************************/
#ifndef DEBUG_H
#define DEBUG_H
#ifdef DEBUG
#define D(x) x
#define bug Printf("* ");Printf
#else
#define D(x)
#define bug
#endif
#endif /* DEBUG_H */